home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / BUS / TMCM Software and Labs.sit / Software for TMCM 7_95 / Files for Lab 14 / First Examples < prev    next >
Text File  |  1995-03-11  |  522b  |  21 lines

  1. ; This file contains some examples of applying transformations
  2. ; to basic objects.  Two notes on syntax:  Anything on a
  3. ; line after a semicolon is treated as a comment for human
  4. ; readers only.  The xModels-2D program has no requirements
  5. ; about how you layout your scene description on the page---
  6. ; you can use carriage returns and spaces however you like.
  7.  
  8. graySquare
  9.    scale 2 
  10.    translate 5,5
  11.  
  12. blackCircle
  13.    scale 5,2
  14.    rotate 30
  15.  
  16. square 
  17.    translate -5,5
  18.  
  19. polygon 0,0 0,5 3,4   ; a triangle
  20.    translate -7,-7
  21.